From 04f6e36b47f9b526942dba01c3c69ca9810313df Mon Sep 17 00:00:00 2001 From: "vhanquez@gwig.uk.xensource.com" Date: Thu, 3 Aug 2006 13:44:05 +0000 Subject: [PATCH] remove '=' between command line name/argument. ease parsing without getopt. Signed-off-by: Vincent Hanquez --- tools/misc/xend | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/misc/xend b/tools/misc/xend index e9bd8e18c7..82198fcea3 100644 --- a/tools/misc/xend +++ b/tools/misc/xend @@ -84,7 +84,7 @@ def check_user(): def start_xenstored(): XENSTORED_TRACE = os.getenv("XENSTORED_TRACE") - cmd = "xenstored --pid-file=/var/run/xenstore.pid" + cmd = "xenstored --pid-file /var/run/xenstore.pid" if XENSTORED_TRACE: cmd += " -T /var/log/xenstored-trace.log" s,o = commands.getstatusoutput(cmd) -- 2.30.2